home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gcc / ixemlsrc.lha / ixemul / string / strcasecmp.c < prev    next >
C/C++ Source or Header  |  1996-03-13  |  5KB  |  134 lines

  1. /*
  2.  * Copyright (c) 1987 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #include <sys/cdefs.h>
  35. #include <sys/types.h>
  36. #include <string.h>
  37.  
  38. #if defined(LIBC_SCCS) && !defined(lint)
  39. static const char sccsid[] = "@(#)strcasecmp.c    5.10 (Berkeley) 1/26/91";
  40. #endif /* LIBC_SCCS and not lint */
  41.  
  42. /*
  43.  * This array is designed for mapping upper and lower case letter
  44.  * together for a case independent comparison.  The mappings are
  45.  * based upon ascii character sequences.
  46.  */
  47. static const u_char charmap[] = {
  48.     '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
  49.     '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
  50.     '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
  51.     '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
  52.     '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
  53.     '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
  54.     '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
  55.     '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
  56.     '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
  57.     '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
  58.     '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
  59.     '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
  60.     '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
  61.     '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
  62.     '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
  63.     '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
  64.     '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
  65.     '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
  66.     '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
  67.     '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
  68.     '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
  69.     '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
  70.     '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
  71.     '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
  72.     '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
  73.     '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
  74.     '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
  75.     '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
  76.     '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
  77.     '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
  78.     '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
  79.     '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
  80. };
  81.  
  82. int
  83. strcasecmp(s1, s2)
  84.     const char *s1, *s2;
  85. {
  86.     register const u_char *cm = charmap,
  87.             *us1 = (const u_char *)s1,
  88.             *us2 = (const u_char *)s2;
  89.  
  90.     while (cm[*us1] == cm[*us2++])
  91.         if (*us1++ == '\0')
  92.             return (0);
  93.     return (cm[*us1] - cm[*--us2]);
  94. }
  95.  
  96. int
  97. strncasecmp(s1, s2, n)
  98.     const char *s1, *s2;
  99.     register size_t n;
  100. {
  101.     if (n != 0) {
  102.         register const u_char *cm = charmap,
  103.                 *us1 = (const u_char *)s1,
  104.                 *us2 = (const u_char *)s2;
  105.  
  106.         do {
  107.             if (cm[*us1] != cm[*us2++])
  108.                 return (cm[*us1] - cm[*--us2]);
  109.             if (*us1++ == '\0')
  110.                 break;
  111.         } while (--n != 0);
  112.     }
  113.     return (0);
  114. }
  115.  
  116. /*
  117.  * seems like the following two are different names for the same thing
  118.  */
  119.  
  120. int
  121. stricmp (s1, s2)
  122.     const char *s1, *s2;
  123. {
  124.   return strcasecmp (s1, s2);
  125. }
  126.  
  127. int
  128. strnicmp (s1, s2, n)
  129.     const char *s1, *s2;
  130.     register size_t n;
  131. {
  132.   return strncasecmp (s1, s2, n);
  133. }
  134.